Package-level declarations

Types

Link copied to clipboard
abstract class CancellableEvent : Event

This is the base class for all cancellable events provided by the Weave Loader, extending Event.

Link copied to clipboard
class ChatReceivedEvent(val message: IChatComponent) : CancellableEvent

This cancellable event is called when your client receives a chat message from the server.

Link copied to clipboard
class ChatSentEvent(val message: String) : CancellableEvent

This cancellable event is called when your client sends a chat message to the server.

Link copied to clipboard
sealed class EntityListEvent : Event

This event is called when an entity is added to or removed from the world.

Link copied to clipboard
abstract class Event

This is the base class for all events provided by the Weave Loader.

Link copied to clipboard
open class EventBus
The event bus handles events and event listeners.
Link copied to clipboard
class GuiOpenEvent(val screen: GuiScreen?) : CancellableEvent

This cancellable event is called when a Gui Screen is opened.

Link copied to clipboard

Keyboard Events are called when a key is pressed or released while currentScreen is null.

Link copied to clipboard

This cancellable event is called when a mouse action is performed.

Link copied to clipboard

Cancellable event, split into Send and Receive.

Link copied to clipboard
sealed class PlayerListEvent : Event

This event is called when a player is added or removed from the player list.

Link copied to clipboard

This event is called when the HUD (game overlay) is being rendered.

Link copied to clipboard
class RenderHandEvent(val partialTicks: Float) : CancellableEvent

Cancellable event, called in net.minecraft.client.renderer.EntityRenderer.renderWorldPass in the event that your hand is rendered (crazy right).

Link copied to clipboard

This event is called when an entity is rendered.

Link copied to clipboard
class RenderWorldEvent(val partialTicks: Float) : Event

Non-cancellable, called in net.minecraft.client.renderer.EntityRenderer.renderWorldPass after the world is rendered. It is also called few lines before RenderHandEvent.

Link copied to clipboard
class ServerConnectEvent(val ip: String, val port: Int) : Event

Non-cancellable event, called at the head of net.minecraft.client.multiplayer.GuiConnecting.connect, therefore, in the event that the player connects to a server, this event is called along-side the player clicking the connect to server button.

Link copied to clipboard

Non-cancellable event, Called in correspondence with net.minecraft.client.Minecraft.shutdownMinecraftApplet. Therefore, ShutdownEvent is called by the EventBus only in the event that the client is being shut down.

Link copied to clipboard
sealed class StartGameEvent : Event

Non-cancellable event, split into Pre and Post.

Link copied to clipboard
Annotate methods with this to make them event listeners.
Link copied to clipboard
sealed class TickEvent : Event

This is the base class for a Tick Event. Tick Events can be Pre and Post, but you will never receive a base Tick Event. These are each called every game tick, or every 50/timer milliseconds (every 1/20th of a second at timer 1). The game's timer speed will never change (unless modified by cheats), so it is safe to assume that it is 1.

Link copied to clipboard
sealed class WorldEvent : Event

Non-cancellable event, split into Load and Unload.